The document describes various tree rotation operations used to rebalance binary search trees, including single and double rotations. Single rotations include single right rotation and single left rotation, which rotate the tree around a single node. Double rotations first perform a single rotation on one child then a single rotation on the original node, such as double right-left rotation and double left-right rotation.